using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;

namespace InverseClockWork.Extra.Cutscenes
{
    public class EventContainer : MonoBehaviour
    {
        public UnityEvent m_event;

        public void TriggerEvents()
        {
            m_event?.Invoke();
        }
    }
}